
.price-range{
    flex-direction:column;
}
.price-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* margin: 0 30px; */
    width: 100%;
}

/*label {
    font-size: 12px;
    font-weight: 500;
}*/

/*p {
    font-size: 16px;
    font-weight: 600;
}*/

.range-slider {
    width: 100%;
    position: relative;
    margin: 15px 0 1rem 0;
    /* padding-right: 1rem; */
}

    .range-slider input[type=range] {
        -webkit-appearance: none;
        width: 100%;
        background: transparent;
        position: absolute;
        left: 0;
    }

    .range-slider input[type=range]::-webkit-slider-thumb {
  /*      -webkit-appearance: none;
        height: 15px;
        width: 15px;
        border-radius: 50%;
        
        cursor: pointer;*/

        margin-top: -2px;
        position: relative;
        z-index: 1;
    }

.min-price::-webkit-slider-thumb {
    border-radius:30% 100% 100% 30% !important;
}
.max-price::-webkit-slider-thumb {
    border-radius: 100% 30% 30% 100% !important;
}

.range-slider input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 5px;
    background: #e8e8e8;
    border-radius: 3px;
    border: none;
}

.current-content{
    display: inline-flex;
    font-weight:bold;
    margin-top: .5rem;
    gap:.5rem;
    justify-content: center;
}

.current-content > *{
    padding: 0px 1px;
}

.current-content input{
    max-width: 4.4em;
    font-size: 14px;
    line-height: 1;
    text-align: center !important;
}

